Write(Byte[],Boolean) Method
Write the data to a Byte Array
public void Write(
out System.byte[] ,
System.bool
)
public procedure Write(
Out : System.Bytearray of;
: System.Boolean
);
public function Write(
: System.byte[],
: System.boolean
);
public: void Write(
[PARAMFLAG::Out] System.byte[]* ,
System.bool
)
public:
void Write(
[Out] System.array<byte>^ ,
System.bool
)
'Declaration
Public Overloads Sub Write( _
ByRef () As System.Byte, _
ByVal As System.Boolean _
)
'Usage
Dim instance As DicomImage
Dim Array() As System.Byte
Dim isPart10 As System.Boolean
instance.Write(Array, isPart10)
Parameters
- Array
Byte Array to write image data to
- isPart10
If TRUE, a blank 128 byte header, DICM marker, and meta-header are written at the start of the file, and an appropriate transfer syntax is used, as below.
If FALSE, the file is written in the unofficial, but common format, with no header, and using the little-endian implicit VR transfer syntax.
Target Platforms: .NET CLR 4.8 or higher